Disconnect the sync callback for the visibility property. (#321761, Philip
authorMatthias Clasen <mclasen@redhat.com>
Fri, 18 Nov 2005 19:47:57 +0000 (19:47 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 18 Nov 2005 19:47:57 +0000 (19:47 +0000)
2005-11-18  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkaction.c (disconnect_proxy): Disconnect the
sync callback for the visibility property.  (#321761,
Philip Langdale)

ChangeLog
ChangeLog.pre-2-10
gtk/gtkaction.c

index e8237acee405004c800fbc69187b145acf751404..b672f3a6ecccf62aae41defc07f04ae79fa83a2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkaction.c (disconnect_proxy): Disconnect the
+       sync callback for the visibility property.  (#321761,
+       Philip Langdale)
+
        Turn off input methods in invisible entries, since
        they are confusing.  (#317002, James Su)
        
index e8237acee405004c800fbc69187b145acf751404..b672f3a6ecccf62aae41defc07f04ae79fa83a2b 100644 (file)
@@ -1,5 +1,9 @@
 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkaction.c (disconnect_proxy): Disconnect the
+       sync callback for the visibility property.  (#321761,
+       Philip Langdale)
+
        Turn off input methods in invisible entries, since
        they are confusing.  (#317002, James Su)
        
index 06e229c8e204f44ef16a405a9f2f45fc7e3fffbd..45611d34b418cf065e11b6876038738bc3ce4f1c 100644 (file)
@@ -1000,6 +1000,9 @@ disconnect_proxy (GtkAction *action,
   g_signal_handlers_disconnect_by_func (action,
                                        G_CALLBACK (gtk_action_sync_sensitivity),
                                        proxy);
+  g_signal_handlers_disconnect_by_func (action,
+                                       G_CALLBACK (gtk_action_sync_visible),
+                                       proxy);
   g_signal_handlers_disconnect_by_func (action,
                                        G_CALLBACK (gtk_action_sync_property),
                                        proxy);